home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / pcplusrt.zip / READ.ME < prev   
Text File  |  1988-02-11  |  2KB  |  71 lines

  1. ****************************************************************************
  2. PCPLUSRT - PROCOMM+ Dialing Directory Sort Utility V1.0
  3. (c) 1988 Software Associates
  4. ----------------------------------------------------------------------------
  5. Just a little program to sort your new PROCOMM+ dialing directories.
  6. I've also included the QuickBASIC 4.0 source code for you.
  7.  
  8. Usage:
  9.        PCPLUSRT <directory file>
  10.     where:
  11.           <directory file> is the name of a valid PROCOMM PLUS directory
  12.                            file (.DIR, 15050 bytes).  This program DOES
  13.                            NOT work on PROCOMM 2.4.2 directories.
  14.  
  15.     PCPLUSRT will sort the directory NAMES in ascending order, placing all
  16.     blank entries at the end.  The original directory file will be kept 
  17.     with the extension .OLD.
  18.  
  19. If you modify the QuickBASIC source, please indicate as such before you
  20. redistribute it.  To rebuild the executable:
  21.  
  22. BC /O /E PCPLUSRT;
  23.  
  24. LINK /NOE /E PCPLUSRT+NOCOM,PCPLUSRT;
  25.            (NOCOM.OBJ is supplied by Microsoft)
  26. ****************************************************************************
  27. I found what seems to be a bug in PROCOMM+ version 1.0.  If you have a large
  28. number of environment variables set, PROCOMM cannot execute any external
  29. programs (SETUP, SHELL, PCEDIT, etc.).  It gives you a "EXTERNAL PROGRAM
  30. ERROR: Not enough memory available."  After many hours playing with the size
  31. of my DOS (3.3) environment table, I have not yet found a way of correcting
  32. the problem short of deleting most of my environment.
  33.  
  34. Until DataStorm gets this fixed, I am sandwiching two batch files around
  35. the invocation of PROCOMM+:
  36.  
  37. C:>DELENV
  38. C:>PCPLUS
  39. C:>SETENV
  40.  
  41. DELENV and SETENV are batch files that erase and restore my environment
  42. variables using the SET statement. For example:
  43.  
  44. DELENV might be:
  45.  
  46. SET TMP=
  47. SET ARCTMP=
  48. SET INCLUDE=
  49. SET LIB=
  50.  
  51. then SETEVN is:
  52.  
  53. SET TMP=F:\
  54. SET ARCTMP=F:\
  55. SET INCLUDE=D:\MSC\INCLUDE
  56. SET LIB=D:\MSC\LIB
  57.  
  58. Be sure that you DO NOT include your PCPLUS environment variable in these
  59. batch files, as PROCOMM+ will need it.  This will "fix" the problem.
  60.  
  61.  
  62. Ed Galle
  63. Software Associates
  64. Houston, Texas
  65. (713) 726-0706
  66. 02/11/88
  67.  
  68.  
  69.  
  70.  
  71.